home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Apr / di9804gk / delphi1.DPR < prev    next >
Text File  |  1997-06-03  |  162b  |  13 lines

  1. program Delphi1;
  2.  
  3. uses
  4.   Forms,
  5.   D1form in 'D1FORM.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.